home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / PeepholeOptimizer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  391 b   |  21 lines  |  [TEXT/KAHL]

  1. /* PeepholeOptimizer.h */
  2.  
  3. #ifndef Included_PeepholeOptimizer_h
  4. #define Included_PeepholeOptimizer_h
  5.  
  6. /* PeepholeOptimizer module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* PcodeObject */
  12. /* Memory */
  13.  
  14. /* forward declarations */
  15. struct PcodeRec;
  16.  
  17. /* this routine does all of the optimization. */
  18. void                                OptimizePcode(struct PcodeRec* ThePcode);
  19.  
  20. #endif
  21.